home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue33 / random / TestRand.dpr < prev    next >
Encoding:
Text File  |  1998-03-18  |  229 b   |  15 lines

  1. program TestRand;
  2.  
  3. uses
  4.   Forms,
  5.   TstrndU1 in 'TstrndU1.pas' {Form1},
  6.   TstRndU2 in 'TstRndU2.pas',
  7.   TstRndU3 in 'TstRndU3.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.